home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_EtherAddrToString.c < prev    next >
C/C++ Source or Header  |  1990-09-11  |  2KB  |  59 lines

  1. /* 
  2.  * Net_EtherAddrToString.c --
  3.  *
  4.  *    Convert an ethernet address to a string.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_EtherAddrToString.c,v 1.2 90/09/11 14:43:43 kupfer Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include <stdio.h>
  24. #include "net.h"
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * Net_EtherAddrToString --
  30.  *
  31.  *    Convert Ethernet address to printable representation.
  32.  *
  33.  * Results:
  34.  *    Address of the string buffer.
  35.  *
  36.  * Side effects:
  37.  *    The buffer is overwritten.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. char *
  43. Net_EtherAddrToString(etherAddrPtr, buffer)
  44.     register Net_EtherAddress *etherAddrPtr;
  45.     char buffer[18];
  46. {
  47.  
  48.     sprintf(buffer, "%02x:%02x:%02x:%02x:%02x:%02x",
  49.     NET_ETHER_ADDR_BYTE1(*etherAddrPtr) & 0xff, 
  50.     NET_ETHER_ADDR_BYTE2(*etherAddrPtr) & 0xff, 
  51.     NET_ETHER_ADDR_BYTE3(*etherAddrPtr) & 0xff, 
  52.     NET_ETHER_ADDR_BYTE4(*etherAddrPtr) & 0xff, 
  53.     NET_ETHER_ADDR_BYTE5(*etherAddrPtr) & 0xff, 
  54.     NET_ETHER_ADDR_BYTE6(*etherAddrPtr) & 0xff
  55.     );
  56.     return(buffer);
  57. }
  58.  
  59.